encoding/hex.dumper.n (field)

6 uses

	encoding/hex (current package)
		hex.go#L251: 	n          uint // number of bytes, total
		hex.go#L274: 			h.buf[0] = byte(h.n >> 24)
		hex.go#L275: 			h.buf[1] = byte(h.n >> 16)
		hex.go#L276: 			h.buf[2] = byte(h.n >> 8)
		hex.go#L277: 			h.buf[3] = byte(h.n)
		hex.go#L307: 		h.n++